home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 014 / shell / globals.c < prev    next >
C/C++ Source or Header  |  1995-03-17  |  1KB  |  54 lines

  1.  
  2. /*
  3.  * GLOBALS.C
  4.  *
  5.  * Matthew Dillon, 24 Feb 1986
  6.  *
  7.  */
  8.  
  9.  
  10. #include "shell.h"
  11.  
  12. struct HIST *H_head, *H_tail;
  13.  
  14. struct PERROR Perror[] = {
  15.    103,  "insufficient free storage",
  16.    104,  "task table full",
  17.    120,  "argument line invalid or too long",
  18.    121,  "file is not an object module",
  19.    122,  "invalid resident library during load",
  20.    203,  "object already exists",
  21.    204,  "directory not found",
  22.    205,  "object not found",
  23.    206,  "invalid window",
  24.    210,  "invalid stream component name",
  25.    212,  "object not of required type",
  26.    213,  "disk not validated",
  27.    214,  "disk write protected",
  28.    215,  "rename across devices",
  29.    216,  "directory not empty",
  30.    218,  "device not mounted",
  31.    220,  "comment too long",
  32.    221,  "disk full",
  33.    222,  "file delete protected",
  34.    223,  "file write protected",
  35.    224,  "file read protected",
  36.    225,  "not a DOS disk",
  37.    226,  "no disk in drive",
  38.    209,  "packet request type unknown",
  39.    211,  "invalid object lock",
  40.    219,  "seek error",
  41.    232,  "no more entries in directory",
  42.      0,  NULL
  43. };
  44.  
  45. char *av[MAXAV];
  46. int   H_len, H_tail_base, H_stack;
  47. int   ac;
  48. int   Debug;
  49.  
  50. int   S_histlen = 20;
  51.  
  52.  
  53.  
  54.